-
Notifications
You must be signed in to change notification settings - Fork 198
updatecli: update other files #7540
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
v1v
merged 7 commits into
elastic:main
from
v1v:feature/support-updatecli-for-other-tools
Mar 25, 2025
Merged
updatecli: update other files #7540
v1v
merged 7 commits into
elastic:main
from
v1v:feature/support-updatecli-for-other-tools
Mar 25, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
This pull request does not have a backport label. Could you fix it @v1v? 🙏
|
v1v
commented
Mar 24, 2025
v1v
commented
Mar 24, 2025
v1v
commented
Mar 24, 2025
pazone
reviewed
Mar 24, 2025
v1v
commented
Mar 25, 2025
v1v
commented
Mar 25, 2025
pazone
approved these changes
Mar 25, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Add new files to be changed by the updatecli pipeline
Why is it important?
See #7454 (comment)
Checklist
./changelog/fragmentsusing the changelog toolDisruptive User Impact
How to test this PR locally
Then I ran
$ GITHUB_TOKEN=$(gh auth token) \ GITHUB_ACTOR=v1v \ updatecli apply --config .ci/updatecli/updatecli-bump-golang.yml --values .ci/updatecli/values.d/scm.ymlExpand to view
--- go.mod
+++ go.mod
@@ -1,6 +1,6 @@
module github.com/elastic/elastic-agent
-go 1.24.0
+go 1.24.1
require (
github.com/Jeffail/gabs/v2 v2.6.0
--- .buildkite/pipeline.yml
+++ .buildkite/pipeline.yml
@@ -202,7 +202,7 @@
artifact_paths:
- "build/TEST-go-unit.cov"
agents:
- unit-tests
- extended-windows
--- .go-version
+++ .go-version
@@ -1 +1 @@
-1.24.0
+1.24.1
--- pkg/testing/runner/runner_test.go
+++ pkg/testing/runner/runner_test.go
@@ -28,7 +28,7 @@
AgentVersion: "8.10.0",
StackVersion: "8.10.0-SNAPSHOT",
BuildDir: filepath.Join(tmpdir, "build"),
--- Dockerfile
+++ Dockerfile
@@ -1,4 +1,4 @@
-ARG GO_VERSION=1.24.0
+ARG GO_VERSION=1.24.1
FROM circleci/golang:${GO_VERSION}
--- Dockerfile.skaffold
+++ Dockerfile.skaffold
@@ -1,4 +1,4 @@
-ARG GO_VERSION=1.24.0
+ARG GO_VERSION=1.24.1
ARG crossbuild_image="docker.elastic.co/beats-dev/golang-crossbuild"
ARG AGENT_VERSION=8.9.0-SNAPSHOT
ARG AGENT_IMAGE="docker.elastic.co/beats/elastic-agent"
--- version/docs/version.asciidoc
+++ version/docs/version.asciidoc
@@ -3,7 +3,7 @@
// FIXME: once elastic.co docs have been switched over to use
main, remove// the
doc-site-branchline below as well as any references to it in the code.:doc-site-branch: master
-:go-version: 1.24.0
+:go-version: 1.24.1
:release-state: unreleased
:python: 3.7
:docker: 1.12
and it created v1v#4
Related issues
Questions to ask yourself